home *** CD-ROM | disk | FTP | other *** search
/ Adelphia Powerlink / adelphia-powerlink.iso / drivers / Ericsson hm200c / ERCMUNIC.INF < prev    next >
Encoding:
Windows Setup INFormation  |  2000-06-19  |  6.7 KB  |  169 lines

  1. ;*****************************************************************************
  2. ;
  3. ; ercmunic.inf   -- Install the Ericsson PipeRider(tm) WDM drivers
  4. ;
  5. ; Copyright (c) 1999 Ericsson, Inc.
  6. ;
  7. ; $Id: lower.inf,v 1.7 2000/02/24 03:23:52 tmm Exp $
  8. ;
  9. ; PipeRider is a trademark of Ericsson, Inc.
  10. ;
  11. ;*****************************************************************************
  12.  
  13. [version]
  14. signature="$CHICAGO$"
  15. Class=USB
  16. ClassGuid={36FC9E60-c465-11cf-8056-444553540000}
  17. Provider=%Provider%
  18. DriverVer=06/16/2000, 3.15.0.101
  19.  
  20. [ClassInstall]
  21.  
  22. ;-----------------------------------------------------------------------------
  23. ; Specify target paths...
  24. ;-----------------------------------------------------------------------------
  25. [DestinationDirs]
  26. DefaultDestDir                  = 11                    ; LDID_SYS
  27. EricssonWdm.W95.CopyFiles       = 11                    ; LDID_SYS
  28. EricssonWdm.NT.CopyFiles        = 12                    ; system32\drivers
  29. PropPages.CopyFiles             = 11                    ; system
  30.  
  31. ;-----------------------------------------------------------------------------
  32. ; Specify the install disks.  A bit unwieldy during development.
  33. ;-----------------------------------------------------------------------------
  34. [SourceDisksNames]
  35. ; diskid = description[, [tagfile] [, <unused>, subdir]]
  36. 1=%DiskString%,"CMUSB",,
  37.  
  38. [SourceDisksFiles]
  39. ; filename = diskid[, [subdir] [, size]]
  40. ercmunic.sys = 1
  41. ercmcr95.sys = 1
  42. ercmcrnt.sys = 1
  43. vercmcr.vxd = 1
  44. ercmwh95.sys = 1
  45. ercmwhnt.sys = 1
  46.  
  47. ;-----------------------------------------------------------------------------
  48. ; Table of Contents:  manufacturer, then devices.
  49. ;-----------------------------------------------------------------------------
  50. [Manufacturer]
  51. %Ericsson%=Ericsson
  52.  
  53. ;-----------------------------------------------------------------------------
  54. ; The devices
  55. ;-----------------------------------------------------------------------------
  56. [Ericsson]
  57. %Ericsson.Ndis.Desc% = EricssonWdm.Install, USB\VID_08EA&PID_0001
  58.  
  59. ;-----------------------------------------------------------------------------
  60. ; How to install them:  On W9x, the [section] name is used directly.
  61. ; On NT, the system first tries [section.NT], then [section].
  62. ;-----------------------------------------------------------------------------
  63.  
  64. ;-----------------------------------------------------------------------------
  65. ; Diagnostics Files CopyFiles List Section
  66. ;-----------------------------------------------------------------------------
  67. [Ericsson.CopyFiles]
  68.  
  69. ;-----------------------------------------------------------------------------
  70. ; XXX when we have a property page DLL, add it to the following section.
  71. ;-----------------------------------------------------------------------------
  72. [PropPages.CopyFiles]
  73.  
  74. ;-----------------------------------------------------------------------------
  75. ;       How to install the WDM driver on W95/W98
  76. ;-----------------------------------------------------------------------------
  77. [EricssonWdm.Install]
  78. DriverVer=06/16/2000, 3.15.0.101
  79. CopyFiles       = EricssonWdm.W95.CopyFiles, Ericsson.CopyFiles, PropPages.CopyFiles
  80. AddReg          = EricssonWdm.AddReg, EricssonWdm.W95.AddReg
  81.  
  82. ;-----------------------------------------------------------------------------
  83. ;       How to install the WDM driver on NT
  84. ;-----------------------------------------------------------------------------
  85. [EricssonWdm.Install.NT]
  86. DriverVer=06/16/2000, 3.15.0.101
  87. CopyFiles       = EricssonWdm.NT.CopyFiles
  88. AddReg          = EricssonWdm.AddReg, EricssonWdm.NT.AddReg
  89.  
  90. ;-----------------------------------------------------------------------------
  91. ;       How to start the WDM driver on NT
  92. ;-----------------------------------------------------------------------------
  93. [EricssonWdm.Install.NT.Services]
  94. AddService      = ercmunic, 2, EricssonWdm.AddService
  95.  
  96. [EricssonWdm.AddService]
  97. DisplayName             = %Ericsson.Service.Desc%
  98. ServiceType             = 1     ; SERVICE_KERNEL_DRIVER
  99. StartType               = 3     ; SERVICE_DEMAND_START
  100. ErrorControl            = 1     ; SERVICE_ERROR_NORMAL
  101. ServiceBinary           = %12%\ercmunic.sys
  102. LoadOrderGroup          = Base
  103.  
  104. ;-----------------------------------------------------------------------------
  105. ;       WDM registry entries (all platforms)
  106. ;-----------------------------------------------------------------------------
  107. [EricssonWdm.AddReg]
  108. HKR,,CRUpperDescription,,%UpperDescription%
  109. HKR,,CREnum,,ERCMCR
  110. HKR,,Configuration,1,   01,00,00,00
  111. HKR,,EnableRxBulkStream, 0x10001, 00,00,00,00
  112. HKR,,nRxBulkStreamObjects, 0x10001,08,00,00,00
  113. HKR,,DataAltSetting,1,  01,00,00,00
  114.  
  115. ;-----------------------------------------------------------------------------
  116. ;       WDM registry entries (W95/98) (including how to start the driver)
  117. ;-----------------------------------------------------------------------------
  118. [EricssonWdm.W95.AddReg]
  119. HKR,,DevLoader,,*ntkern
  120. HKR,,NTMPDriver,,ercmunic.sys
  121.  
  122. ;-----------------------------------------------------------------------------
  123. ;       WDM registry entries (NT only)
  124. ;-----------------------------------------------------------------------------
  125. [EricssonWdm.NT.AddReg]
  126.  
  127. ;-----------------------------------------------------------------------------
  128. ;       The WDM copy list for Win95 -- different because things go in
  129. ;       different places.  Also, we probably need to rename drivers 
  130. ;       during the install.
  131. ;-----------------------------------------------------------------------------
  132. [EricssonWdm.W95.CopyFiles]
  133. ercmunic.sys
  134. ercmcr.sys,ercmcr95.sys
  135. vercmcr.vxd
  136. ercmwh.sys,ercmwh95.sys
  137.  
  138. ;-----------------------------------------------------------------------------
  139. ;       The WDM copy list for NT -- different because things go in
  140. ;       different places.
  141. ;-----------------------------------------------------------------------------
  142. [EricssonWdm.NT.CopyFiles]
  143. ercmunic.sys
  144. ercmwh.sys,ercmwhnt.sys
  145. ercmcr.sys,ercmcrnt.sys
  146.  
  147. ;****************************************************************************
  148. ; Localizable Strings
  149. ;****************************************************************************
  150. [strings]
  151.  
  152. ;BEGIN ENG - US English Strings
  153. Provider = "Ericsson, Inc."
  154. Ericsson = "Ericsson, Inc."
  155. DiskString = "PipeRider(tm) Cable Modem installation disk"
  156.  
  157. Ericsson.Ndis.Desc = "Ericsson PipeRider(tm) USB Cable Modem"
  158. Ericsson.Service.Desc = "PipeRider(tm) WDM Driver"
  159.  
  160. UpperDescription = "PipeRider(tm) networking support"
  161.  
  162. ;END ENG - US English Strings
  163.  
  164. ;-----------------------------------------------------------------------------
  165. ; Following are symbolic constants which don't change per locale.
  166. ;-----------------------------------------------------------------------------
  167.  
  168. ;*** end of file ***
  169.